Skip to main content
This forum is closed to new posts and responses. The content has been migrated to the Digital Solutions Community. Please join us there for new content as well as this content. For customer support, please visit the official HCL customer support channels below:

HCL Software Customer Support Portal for U.S. Federal Government clients
HCL Software Customer Support Portal

Notes/Domino 6 and 7 Forum

Notes/Domino 6 and 7 Forum


  

PreviousPrevious NextNext


~Bill Desjipymanakoi 27.Jan.04 07:43 AM a Web browser
Domino Designer 6.5 Windows XP


If your computer use scandinavian character set, you have to do changes in SoapConnect.
You have to replace "." with ","

Function ReplaceSubstring(inputStr As String, fromStr As String, toStr As
String) As String
' This function acts similarly to the @Formula language function '
@ReplaceSubstring'
Dim newStr As String
Dim position As Integer

newStr = inputStr

While Instr(newStr, fromStr) > 0
position = Instr(newStr, fromStr)
newStr = Left$(newStr, position - 1) + toStr + Right$(newStr,
Len(newStr) - (position + Len(fromStr) - 1))
Wend
ReplaceSubstring = newStr

End Function



Dim soapReturnVariant As variant

soapReturn = ReplaceSubstring(soapDoc.ReturnValue(0), ".", ",")

Select Case soapDoc.ReturnType(0)
Case "2": ' Integer
ReturnValue = Cint(soapReturn)
...


Arnt








  Document options
Print this pagePrint this page

 Search this forum

  Forum views and search
Date (threaded)
Date (flat)
With excerpt
Category
Platform
Release
Advanced search

 RSS feedsRSS
All forum posts RSS
All main topics RSS